home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / comm / echeck20.zip / ECHECK.EXE / 0 / RCDATA / TFORMMEDIA / TFORMMEDIA.txt
Text File  |  1996-09-26  |  1KB  |  58 lines

  1. object FormMedia: TFormMedia
  2.   Left = 16
  3.   Top = 521
  4.   Hint = 'Double click to close animation and bring up the main window.'
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsNone
  7.   Caption = 'E-Check Media Player'
  8.   ClientHeight = 150
  9.   ClientWidth = 200
  10.   Font.Color = clWindowText
  11.   Font.Height = -13
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poDefaultPosOnly
  15.   Scaled = False
  16.   ShowHint = True
  17.   OnClose = FormClose
  18.   OnCreate = FormCreate
  19.   PixelsPerInch = 120
  20.   TextHeight = 16
  21.   object PanelForm: TPanel
  22.     Left = 0
  23.     Top = 0
  24.     Width = 200
  25.     Height = 150
  26.     Align = alClient
  27.     BorderWidth = 1
  28.     TabOrder = 1
  29.     object PanelDisplay: TPanel
  30.       Left = 2
  31.       Top = 2
  32.       Width = 196
  33.       Height = 146
  34.       Align = alClient
  35.       BorderWidth = 1
  36.       BorderStyle = bsSingle
  37.       TabOrder = 0
  38.       OnDblClick = PanelDisplayDblClick
  39.       OnMouseDown = PanelDisplayMouseDown
  40.       OnMouseMove = PanelDisplayMouseMove
  41.       OnMouseUp = PanelDisplayMouseUp
  42.     end
  43.   end
  44.   object MediaPlayer: TMediaPlayer
  45.     Left = 6
  46.     Top = 114
  47.     Width = 29
  48.     Height = 30
  49.     EnabledButtons = [btPlay, btPause, btStop, btBack]
  50.     VisibleButtons = [btPlay]
  51.     Display = PanelDisplay
  52.     FileName = 'e.avi'
  53.     Visible = False
  54.     TabOrder = 0
  55.     OnNotify = MediaPlayerNotify
  56.   end
  57. end
  58.